home *** CD-ROM | disk | FTP | other *** search
/ Shareware Super Platinum 8 / Shareware Super Platinum 8.iso / mac / PROGTOOL / FGL304D.ZIP;1 / EXBAS.ARJ / FGDOC / EXAMPLES / BASIC / 06-09.BAS < prev    next >
Encoding:
BASIC Source File  |  1994-01-24  |  285 b   |  23 lines

  1. REM $INCLUDE: 'fastgraf.bi'
  2.  
  3. DEFINT A-Z
  4.  
  5. OldMode = FGgetmode
  6. FGsetmode FGautomode
  7. FGsetcolor 15
  8.  
  9. FGinitw
  10. FGsetworld -100.0, 100.0, -100.0, 100.0
  11.  
  12. X = FGxscreen(0.0)
  13.  
  14. FGmovew 0.0, 0.0
  15. FGellipsew 12.5, 12.5
  16. FGcirclew 12.5
  17. FGwaitkey
  18.  
  19. FGsetmode OldMode
  20. FGreset
  21.  
  22. END
  23.